home *** CD-ROM | disk | FTP | other *** search
/ PC for Alla 2005 April / PC för Alla 0504.iso / noje / arcade-3.6.exe / snake.swf / scripts / DefineSprite_13 / frame_1 / DoAction.as
Encoding:
Text File  |  2003-11-29  |  215 b   |  17 lines

  1. if(_parent._name == "worm_mc")
  2. {
  3.    step = 2;
  4. }
  5. else if(_parent._name == "python_mc")
  6. {
  7.    step = 3;
  8. }
  9. else
  10. {
  11.    step = 1;
  12. }
  13. this.onEnterFrame = function()
  14. {
  15.    gotoAndStop(_currentframe + step);
  16. };
  17.